home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / shells / scsh-0.4 / scsh-0 / scsh-0.4.2 / scsh / tty1.h < prev    next >
Text File  |  1995-10-26  |  625b  |  20 lines

  1. /* Exports from tty1.c. */
  2.  
  3. int scheme_tcgetattr(int fd,         char *control_chars,
  4.              int *iflag_hi8, int *iflag_lo24,
  5.              int *oflag_hi8, int *oflag_lo24,
  6.              int *cflag_hi8, int *cflag_lo24,
  7.              int *lflag_hi8, int *lflag_lo24,
  8.              int *ispeed,    int *ospeed);
  9.  
  10. int scheme_tcsetattr(int fd,        int option,
  11.              const char *control_chars,
  12.              int iflag_hi8, int iflag_lo24,
  13.              int oflag_hi8, int oflag_lo24,
  14.              int cflag_hi8, int cflag_lo24,
  15.              int lflag_hi8, int lflag_lo24,
  16.              int ispeed,    int ospeed,
  17.              int min,        int time);
  18.  
  19. int open_ctty(const char *ttyname, int flags);
  20.